female thread - tradução para russo
Diclib.com
Dicionário Online

female thread - tradução para russo

DESIGN PATTERN FOR ACHIEVING CONCURRENCY OF EXECUTION IN A COMPUTER PROGRAM BY MAINTAINING MULTIPLE THREADS WAITING FOR TASKS TO BE ALLOCATED FOR CONCURRENT EXECUTION BY THE SUPERVISING PROGRAM
Thread pooling; Thread pool pattern; Thread-pool
  • A sample thread pool (green boxes) with waiting tasks (blue) and completed tasks (yellow)

female thread      

общая лексика

внутренняя резьба

нефтегазовая промышленность

внутренняя нарезка трубы

гаечная резьба

female thread      
внутренняя резьба
female thread      
1) нитка гайки
2) внутренняя резьба

Definição

thread-safe
<programming> A description of code which is either re-entrant or protected from multiple simultaneous execution by some form of mutual exclusion. (1997-01-30)

Wikipédia

Thread pool

In computer programming, a thread pool is a software design pattern for achieving concurrency of execution in a computer program. Often also called a replicated workers or worker-crew model, a thread pool maintains multiple threads waiting for tasks to be allocated for concurrent execution by the supervising program. By maintaining a pool of threads, the model increases performance and avoids latency in execution due to frequent creation and destruction of threads for short-lived tasks. The number of available threads is tuned to the computing resources available to the program, such as a parallel task queue after completion of execution.